home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 11
/
Amiga Plus 11: Amiga Future.iso
/
rexx
/
printgeo.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-07-22
|
417b
|
24 lines
/*
**************************
**** xFX ARexx script ****
**************************
Print disk geometry
*/
if ~show('P','xFX.1') then do /* Check if xFX is running */
say 'xFX not running !'
exit
end
InDev = ''
say 'Device name:'
parse pull InDev
if InDev ~= '' then do
address 'xFX.1' info InDev
end